To create docker image

01/04/2025

The next session of learning Docker. Today I was working on a few basics.

First, install dependencies, then the app.

Use the ubuntu image and run it with the bash command so it doesn’t stop immediately:

docker run -it ubuntu bash

After that, I’ll be connected to the container. This gives me the ability to play around without messing up the Docker host. When I exit the container, everything will be gone.

To dockerize it, I need to create a Dockerfile:

FROM <base-image>

RUN <some-setup-commands>

COPY app.py /place-to-copy/  # This assumes the file and path exist

ENTRYPOINT ["python3", "/place-to-copy/app.py"]  # Or similar, depending on the app

Then build the image with:

docker build .

If I forget to name it, I can use the same build command with the -t parameter. Because of caching, it will build quickly:

docker build . -t my-image

To publish it, I have to tag it with my account name first. Otherwise, it will try to publish it to the default official image repository:

docker build . -t kamil/my-image